ACEDataset

class swpy.swds.dataset.ace. ACEDataset

Bases: BaseDataset

A class that provides functionality to load and parse ACE Dataset files for data processing. This class is implemented by inheriting from the BaseDataset class and organizes the header information and data from the ACE Dataset file into a format that is easily accessible to users.

data_all

The numpy array storing the data has a size of 1460 x 8 (8 days) for data retrieved from the database, and a size of 1460 x 7 (7 days) for data loaded from the local files. Additionally, sections with no data are filled with numpy.nan .

Type

numpy array


Methods Summary

load()

Load the dataset from a file.

parsing_header()

Read the header information and categorize it into header, notes, labels, and units.

parsing_data()

Read the date and proceed with date format eg. YYYY-mm-ddTHH:MM:SS.


load ( self )

Load the dataset from a file.


parsing_header ( self )

Read the header information and categorize it into header, notes, labels, and units.


parsing_data ( self )

Read the date and proceed with date format eg. YYYY-mm-ddTHH:MM:SS.